    body {
      font-family: 'Segoe UI', sans-serif;
      max-width: 800px;
      margin: 0 auto;
      padding: 30px;
      background-color: #f5f7fa;
    }

    h2 {
      text-align: center;
      color: #004466;
    }

    form {
      background-color: #ffffff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .section {
      margin-bottom: 30px;
      padding: 20px;
      border-left: 5px solid #004466;
      background-color: #f0f4f8;
      border-radius: 6px;
    }

    .section h3 {
      margin-top: 0;
      color: #003344;
    }

    label {
      font-weight: bold;
      display: block;
      margin-bottom: 6px;
      margin-top: 15px;
    }

    input, textarea, select {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      box-sizing: border-box;
      margin-bottom: 15px;
    }

    .row {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .row > div {
      flex: 1;
      min-width: 200px;
    }

    button {
      display: block;
      width: 100%;
      padding: 12px;
      background-color: #004466;
      color: white;
      font-size: 16px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      margin-top: 20px;
    }

    button:hover {
      background-color: #006699;
    }
	
	  /* Stijl van de gestippelde rand om de knop */
  .upload-box {
    border: 2px dashed #999;
    border-radius: 6px;
    padding: 16px;
    margin-top: 16px;
    text-align: center;
    background-color: #fdfdfd;
  }

  /* Stijl die lijkt op standaard input veld met donkere tekst */
  .button-style {
    display: inline-block;
    padding: 8px 12px;
    font-size: 14px;
    font-family: inherit;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #00000000; /* transparant */
    color: #222; /* donkere letters */
    cursor: pointer;
  }

  .button-style:hover {
    background-color: #e0e0e0;
  }
  
  .special-note {
  color: #b03a3a;
  font-style: italic;
}

.locationWarning {
    display: none; /* standaard NIET tonen */
}

.hidden {
    display: none;
}